home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-11-07 | 684 b | 42 lines |
- # Makefile for libiconv/man, OS2/EMX specific
- #
- # requires EMX/GCC development environment and
- # GNU futils installed
- #
- # define EMXPATH=<your EMX path> on install/uninstall
- #
-
- #### Start of system configuration section. ####
-
- # Directories used by "make install":
- prefix = @prefix@
- exec_prefix = $(prefix)
- mandir = $(prefix)/man
-
- #### End of system configuration section. ####
-
- MAN = iconv.3 iconv_close.3 iconv_open.3
-
- all :
-
- install : force
- @for %i in ($(MAN)) do cp -i %i $(mandir)/man3/%i
-
- installdirs :
-
- uninstall : force
- @for %i in ($(MAN)) do rm -i $(mandir)/man3/%i
-
- check :
-
- mostlyclean :
-
- clean :
-
- distclean : force
- rm -f Makefile
-
- maintainer-clean : distclean
-
- force :
-